home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk10 / asg / example.asg < prev    next >
Text File  |  1995-03-18  |  1KB  |  108 lines

  1. gadget ok
  2.     text OK
  3.     style dsborder
  4.     id    1
  5. end
  6.  
  7. gadget cancel
  8.     text Cancel
  9.     style dsborder
  10.     id    2
  11. end
  12.  
  13. gadget option1
  14.     text Option 1
  15.     stock    box
  16.     id    10
  17. end
  18.  
  19. gadget option2
  20.     text Option 2
  21.     stock    box
  22.     style    textimage
  23.     id    11
  24. end
  25.     
  26. gadget option3
  27.     text Option 3
  28.     stock    button
  29.     id    12
  30. end
  31.  
  32. gadget up
  33.     stock    uparrow
  34.     id    20
  35. end
  36.  
  37. gadget down
  38.     stock    downarrow
  39.     id    21
  40. end
  41.  
  42. requester show options
  43.     center
  44.     gadget    option1
  45.     down
  46.     gadget    option2
  47.     down
  48.     gadget  option3
  49.     down
  50.     down
  51.     gadget    up
  52.     gadget down
  53.     midleft    
  54.     gadget    ok
  55.     midright
  56.     gadget    cancel
  57.     down
  58. end
  59.  
  60. menu    Project
  61.     text    Load
  62.     text    Save
  63.     text    Quit
  64. end
  65.  
  66. menu    Edit
  67.     text    Cut
  68.     text    Copy
  69.     text    Clear
  70.     text    Paste
  71. end
  72.  
  73. menu    Fonts
  74.     text    ruby
  75.     submenu    
  76.         text    8 pt
  77.         text    10 pt
  78.         text    16 pt
  79.     end
  80.     text    emerald
  81.     submenu
  82.         text    14 pt
  83.         text    21 pt
  84.     end
  85.     text    saphire
  86.     submenu
  87.         text    12 pt
  88.         text    15 pt
  89.     end
  90. end
  91.  
  92.  
  93. window example
  94.     title    Example ASG Window
  95.     flags    closewindow,menupick,activate,windowdrag,windowsizing
  96.     hsize        640
  97.     minhsize    100
  98.     maxhsize    640
  99.     vsize        200
  100.     minvsize    40
  101.     maxvsize    400
  102.     closegad
  103.     depthgad
  104.     movegad
  105.     sizegad
  106. end
  107.  
  108.